home *** CD-ROM | disk | FTP | other *** search
/ Take-Home Tutor en Espanol / TakeHomeTutor.iso / pc / En espanol / Take-Home Tutor 3 / Vocabulary.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2003-03-27  |  1.5 KB  |  75 lines

  1. stop();
  2. largeView._visible = false;
  3. one.onRollOver = function()
  4. {
  5.    this.gotoAndStop("rollOver");
  6. };
  7. one.onRollOut = function()
  8. {
  9.    this.gotoAndStop("rollOut");
  10. };
  11. two.onRollOut = function()
  12. {
  13.    this.gotoAndStop("rollOut");
  14. };
  15. two.onRollOver = function()
  16. {
  17.    this.gotoAndStop("rollOver");
  18. };
  19. three.onRollOut = function()
  20. {
  21.    this.gotoAndStop("rollOut");
  22. };
  23. three.onRollOver = function()
  24. {
  25.    this.gotoAndStop("rollOver");
  26. };
  27. viewIcon.onRollOut = function()
  28. {
  29.    this.gotoAndStop("rollOut");
  30. };
  31. viewIcon.onRollOver = function()
  32. {
  33.    this.gotoAndStop("rollOver");
  34. };
  35. viewIcon.onRelease = function()
  36. {
  37.    largeView._visible = true;
  38.    largeViewClose._visible = true;
  39. };
  40. answer.onRollOver = function()
  41. {
  42.    this.gotoAndStop("rollOver");
  43. };
  44. answer.onRollOut = function()
  45. {
  46.    this.gotoAndStop("rollOut");
  47. };
  48. largeView.largeViewClose.onRollOver = function()
  49. {
  50.    this.gotoAndStop("rollOver");
  51. };
  52. largeView.largeViewClose.onRollOut = function()
  53. {
  54.    this.gotoAndStop("rollOut");
  55. };
  56. largeView.largeViewClose.onRelease = function()
  57. {
  58.    largeView._visible = false;
  59. };
  60. largeView.dragBar.useHandCursor = false;
  61. largeView.dragBar.onPress = function()
  62. {
  63.    this._parent.startDrag();
  64.    largeView.dragBar.onMouseMove = this.onMouseMoveFunc;
  65. };
  66. largeView.dragBar.onRelease = function()
  67. {
  68.    this._parent.stopDrag();
  69.    largeView.dragBar.onMouseMove = null;
  70. };
  71. largeView.dragBar.onMouseMoveFunc = function()
  72. {
  73.    updateAfterEvent();
  74. };
  75.